home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / mail / mailx6 / _setup.1 / MAILX.BAS < prev    next >
Encoding:
BASIC Source File  |  1996-04-11  |  2.8 KB  |  104 lines

  1. ' Mail X Session Constants
  2. Global Const ERROR_LOADING_LIBRARY = 1
  3. Global Const ERROR_NOT_CONNECTED = 2
  4. Global Const ERROR_EX_FUNCTION = 3
  5. Global Const SESSION_NONE = 0
  6. Global Const SESSION_MSMAIL = 1
  7. Global Const SESSION_VIM = 2
  8. Global Const SESSION_POP3SMTP = 3
  9. Global Const SESSION_CUSTOMLIB = 4
  10.  
  11. Global Const ACTION_INVOKE_CONFIG = 1
  12.  
  13. ' Mail X Message Constants
  14. Global Const ACTION_DELETEMAIL = 1
  15. Global Const ACTION_FINDNEXT = 2
  16. Global Const ACTION_FINDFIRST = 3
  17. Global Const ACTION_CLEARMSG = 4
  18. Global Const ACTION_CLEARRECIP = 5
  19. Global Const ACTION_CLEARFILE = 6
  20. Global Const ACTION_NEW = 7
  21. Global Const ACTION_REPLY = 8
  22. Global Const ACTION_FORWARD = 9
  23. Global Const ACTION_REPLYALL = 10
  24. Global Const ACTION_COPYMSG = 11
  25. Global Const ACTION_SAVEMSG = 12
  26. Global Const ACTION_SENDMSG = 13
  27.  
  28. Global Const ERROR_MSG_NOTCONNECTED = 1
  29. Global Const ERROR_MSG_NOTFETCH = 2
  30. Global Const ERROR_MSG_NOTBINDED = 3
  31. Global Const ERROR_MSG_SENDMAIL = 4
  32. Global Const ERROR_MSG_SAVEMSG = 5
  33. Global Const ERROR_MSG_EMPTYMSG = 6
  34. Global Const ERROR_MSG_DELETE = 7
  35. Global Const ERROR_MSG_SETMSGID = 8
  36. Global Const ERROR_MSG_FINDNEXT = 9
  37.  
  38. Global Const ERROR_MSG_FINDFIRST = 10
  39. Global Const ERROR_MSG_FETCHMSG = 11
  40. Global Const ERROR_MSG_EX_FUNCTION = 12
  41.  
  42. Global Const INBOX_MSG = 0
  43. Global Const COMPOSE_MSG = 1
  44.  
  45. Global Const NEW_MSG = 0
  46. Global Const REPLY_MSG = 1
  47. Global Const FORWARD_MSG = 2
  48. Global Const REPLYALL_MSG = 3
  49.  
  50. Global Const CLEAR_MSG = 0
  51. Global Const CLEAR_RECIP = 1
  52. Global Const CLEAR_FILE = 2
  53.  
  54. ' Mail X Recipient Constants
  55. Global Const ACTION_DETAILS = 1
  56. Global Const ACTION_ADDRESS = 2
  57. Global Const ACTION_ADDRECIPIENT = 3
  58. Global Const ACTION_DEL_RECIPIENT = 4
  59. Global Const ACTION_RECIP_SET = 5
  60. Global Const ACTION_INSERTCUSTOM = 6
  61.  
  62. Global Const CLASS_ORIG = 0
  63. Global Const CLASS_TO = 1
  64. Global Const CLASS_CC = 2
  65. Global Const CLASS_BCC = 3
  66.  
  67. Global Const MAPI_ORIG = 0
  68. Global Const MAPI_TO = 1
  69. Global Const MAPI_CC = 2
  70. Global Const MAPI_BCC = 3
  71.  
  72. Global Const LIST_ONLY = 0
  73. Global Const EDIT_TO = 1
  74. Global Const EDIT_TO_CC = 2
  75. Global Const EDIT_TO_CC_BCC = 3
  76.  
  77. Global Const ERROR_REC_NOTBINDED = 1
  78. Global Const ERROR_REC_MSGNOT_BINDED = 2
  79. Global Const ERROR_REC_EMPTY = 3
  80. Global Const ERROR_REC_SESS_NOTCONNECT = 4
  81. Global Const ERROR_REC_BADCONTROL = 5
  82. Global Const ERROR_REC_AMBIGUOUS = 7
  83.  
  84. Global Const ORIGINATOR = 0
  85. Global Const MSG_RECIPIENTS = 1
  86.  
  87. ' Mail X FILE Constants
  88. Global Const ACTION_DELETEFILE = 1
  89. Global Const ACTION_REMOVEFILE = 2
  90. Global Const ACTION_ADDFILE = 3
  91. Global Const ACTION_FILESET = 4
  92.  
  93. Global Const ERROR_DELETE_TEMP = 1
  94. Global Const ERROR_FILE_EMPTY = 2
  95. Global Const ERROR_NOT_BINDED = 3
  96. Global Const ERROR_MSGNOT_BINDED = 4
  97. Global Const ERROR_FILE_BADCONTROL = 5
  98. Global Const ERROR_FILE_UNABLEADD = 7
  99.  
  100. Global Const NO_FLAGS = 0
  101. Global Const MAPI_OLE = 1
  102. Global Const MAPI_OLE_STATIC = 2
  103.  
  104.